home *** CD-ROM | disk | FTP | other *** search
-
- /**
-
- # # # #
- ## ## # # # ##### # # # ###### ##### #### ######
- # # # # # # # # # # # # # # # #
- # # # # # # # # # # ##### # # #### #####
- # # # # # # # # # # ##### # #
- # # # # # # # # # # # # # # #
- # # #### ###### # # # ###### # # #### ######
-
- #####
- # # # # #### ##### ###### # #
- # # # # # # ## ##
- ##### # #### # ##### # ## #
- # # # # # # #
- # # # # # # # # #
- ##### # #### # ###### # #
-
- Copyright: Robert Grant, 1993
-
- **/
-
- #ifndef __EXT_BIWING_H__
- #define __EXT_BIWING_H__
-
- /* Data used to fly a biwing */
-
- #define MAX_MISSILES 3
- #define MAX_MINES 3
-
- #define FLYING 0
- #define HIT 1
-
- typedef struct biwing {
- int speed;
- int shields;
- double temp;
- int state;
- int counter;
- int score;
- object_t *missile;
- object_t *mine;
- } biwingExt_t;
-
- /* #defines used in ext_biwing.c */
-
- #define MAXSPEED 40
- #define MINSPEED 0
-
- #endif /* __EXT_BIWING_H__ */
-